﻿/*CSS样式重写*/

:root{
    --varColor: #008779;
}

body,p,h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1400px;
    background: #F5F5F5;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: var(--varColor);
    text-decoration:underline;
}
input,select,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
    transition: .3s;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.active{
    display: block;
}
.container{
    width: 1400px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}

/*头部*/
.header{
    /*height: 235px;*/
    position: relative;
    background: #fff;
}
.header .top {
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: #E7E7E7;
}
.header .top span{
    margin-right: 15px;
}
.header .top i{
    color: #A2A2A2;
    font-size: 12px;
    font-style: normal;
    margin: 0 10px;
}

.header .logo{
    float: left;
    height: 150px;
    line-height: 150px;
}
.header .logo img{
    animation: zoomIn 1s;
}
.header .search{
    float: right;
    margin-top: 40px;
}
.header .search p{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: right;
}
.header .search p img{
    margin-right: 10px;
}
.header .search form{
    position: relative;
}
.header .search input[type='text']{
    width: 360px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid rgba(45, 99, 72,0.99);
    border-radius: 22px;
    padding: 0 70px 0 10px;
    box-sizing: border-box;
}
.header .search input[type='submit']{
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 44px;
    border: none;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
    background: var(--varColor) url(../images/search.png) no-repeat center center;
}
/*导航栏*/
.nav{
    width: 100%;
    height: 55px;
    background: var(--varColor);
}
.menu{
    display: flex;
}
.menu>li{
    flex-grow: 1;
    position: relative;
}
.menu>li>a{
    display: block;
    height: 55px;
    line-height: 55px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    position: relative;
}
.menu>li>a:after{
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 0;
    height: 15px;
    border-left: 1px solid #10774D;
}
.menu>li>a:hover{
    color: #fff;
    text-decoration: none;
    background: #1A7E55;
}
.menu>li>a:hover:after{
    display: none;
}
.menu>li:last-child>a:after{
    display: none;
}

.sub-menu{
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #0A422B;
    z-index: 99;
    display: none;
}
.sub-menu li a{
    display: block;
    color: #fff;
    height: 45px;
    line-height: 45px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid #A2A2A2;
}
.sub-menu li a:hover{
    background: #1A7E55;
    text-decoration: none;
}

.section{
    /*min-height: 600px;*/
}

.title{
    height: 30px;
    line-height: 30px;
    margin: 25px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #00877A;
}
.title h1{
    float: left;
    font-size: 20px;
    position: relative;
}
.title h1 img{
    margin-right: 10px;
}
.title span{
    color: #666;
    font-size: 18px;
    font-weight: normal;
}
.title a{
    text-decoration: none;
}

/*幻灯片*/
.slide img{
    width: 100%;
}
.slideBox{
    width:100%;
    margin: 0 auto;
    overflow:hidden;
    position:relative;
    text-align: center;
}
.slideBox .hd{
    position:absolute;
    width: 100%;
    bottom:15px;
    z-index:1;
}
.slideBox .hd ul{
    width: 100%;
    text-align: center;
}
.slideBox .hd ul li{
    margin:0 8px;
    width: 14px;
    height: 14px;
    background:#eee;
    cursor:pointer;
    display: inline-block;
    border-radius: 50%;
    position: relative;
}
.slideBox .hd ul li.on{
    width: 20px;
    height: 20px;
    top: 3px;
    background: transparent;
    border: 4px solid #e4393c;
}
.slideBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
}
.slideBox .bd img{
    display:inline-block;
}
.slideBox .arrow{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1200px;
    height: 100%;
    margin-left: -600px;
    display: none;
}
.slideBox:hover .arrow{
    display: block;
}
.slideBox .prev,
.slideBox .next{
    position:absolute;
    left:2%;
    top:50%;
    margin-top:-37px;
    display:block;
    width:37px;
    height:74px;
    background: url(../images/arrow_left.png) no-repeat;
}
.slideBox .next{
    left:auto;
    right:2%;
    background: url(../images/arrow_right.png) no-repeat;
}

/*办事流程*/
.process{
    height: 202px;
    margin: 30px 0 10px;
    padding: 0 5px;
    background: url(../images/process-bg.jpg) no-repeat;
}
.process h2{
    font-size: 30px;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
}
.tab{
    display: flex;
    justify-content: space-between;
}
.tab a{
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    font-size: 24px;
    margin: 0 5px;
    background: #ddd;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab a.on{
    color: var(--varColor);
    background: #fff;
}
.tab a:hover{
    text-decoration: none;
}
.box{
    margin: 2px 5px;
    padding: 0 5px;
    background: rgba(255,255,255,.8);
}
.box ul{
    display: none;
    align-items: center;
    height: 36px;
}
.box ul.on{
    display: flex;
}
.box ul li{
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    margin: 0 5px;
    padding-left: 15px;
    font-size: 16px;
}
.box ul li:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background: #666;
    border-radius: 50%;
}
.box ul li:hover:before{
    background: var(--varColor);
}

/*工作动态*/
.news{
    float: right;
    width: 61.5%;
}
.album{
    float: left;
    width: 433px;
}
.albumBox{
    width:100%;
    position:relative;
}
.albumBox .hd{
    position:absolute;
    height: 40px;
    right: 0;
    bottom: 0;
    z-index:1;
}
.albumBox .hd ul{
    width: 100%;
    text-align: right;
    padding-right: 5px;
    margin-top: 10px;
}
.albumBox .hd ul li{
    margin:0 5px;
    width:18px;
    height:18px;
    line-height: 16px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border: 1px solid #eee;
    cursor:pointer;
    display: inline-block;
}
.albumBox .hd ul li.on{
    background:#00877A;
    border: 1px solid #00877A;
}
.albumBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
}
.albumBox .bd img{
    display:inline-block;
}

.news-img{
    width: 432px;
}
.news-img>a{
    display: block;
    position: relative;
}
.news-img img{
    display: block;
    width: 432px;
    height: 308px;
    object-fit: cover;
}
.news-img h3{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 150px 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background: rgba(0,0,0,.6);
}
.news-img h3:hover{
    text-decoration: underline;
}
.news>ul{
    margin-left: 452px;
}
.news>ul>li{
    font-size: 16px;
    overflow: hidden;
}
.news>ul>li:not(:last-of-type){
    margin-bottom: 25px;
}
.news>ul>li span{
    float: right;
    color: #999;
}
.news>ul>li>p{
    margin-right: 60px;
}
.news>ul>li>p a{
    float: left;
    white-space: nowrap;
    text-overflow: clip;
    overflow: hidden;
    max-width: 270px;
    font-size: 16px;
    position: relative;
}
.news>ul>li>p img{
    margin: -4px 0 0 5px;
    display: none;
}

/*通知公告*/
.major{
    float: left;
    width: 36%;
}
.major-intro{
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #CDCDCD;
}
.major-intro h2{
    font-size: 20px;
    font-weight: normal;
    height: 3em;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.major ul li{
    font-size: 16px;
    margin-top: 16px;
}
.major ul li span{
    color: #999;
}
.major ul li p{
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 20px 0 18px;
}
.major ul li p:before{
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #00877A;
    border-radius: 50%;
}

/*专题链接*/
.link ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.link ul li{
    width: 32%;
    height: 62px;
    line-height: 62px;
    text-align: center;
    margin-bottom: 18px;
    background: var(--varColor);
}
.link ul li a{
    display: block;
    color: #fff;
    font-size: 18px;
}
.link ul li a:hover{
    text-decoration: none;
    background: orange;
}

.common-list{
    margin: 15px 0 10px 0;
}
.common-list li{
    height: 55px;
    line-height: 55px;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 0;
}
.common-list li span{
    float: right;
    color: #999;
}
.common-list li span i{
    padding-right: 5px;
}
.common-list li a{
    text-decoration: none;
}
.common-list li:hover{
    background: #F1F1F1;
}
.common-list li{
    font-size: 16px;
    padding: 0 8px;
}
.common-list li p{
    position: relative;
    padding: 0 30px 0 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.common-list li p:before{
    content: '';
    position: absolute;
    top: 23px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #D0D1D3;
    border-radius: 50%;
}
.common-list li p:hover:before{
    background: #00877A;
}

/*尾部*/
.footer{
    height: 202px;
    color: #CDD1DF;
    margin-top: 30px;
    padding: 40px 0;
    box-sizing: border-box;
    background: url(../images/footer.jpg) no-repeat;
    background-size: 100% 100%;
}
.footer a{
    color: #CEC9C9;
}
.footer a:hover{
    color: #fff;
}
.footer-bottom{
    overflow: hidden;
}
.footer-bottom>p{
    float: left;
    height: 90px;
    line-height: 30px;
    margin-top: 10px;
}
.footer-bottom a img{
    margin-top: 10px;
}
.footer-bottom .rt{
    text-align: center;
}
.footer-bottom .rt img{
    border: 10px solid #fff;
}
.footer-bottom .rt p{
    font-size: 12px;
    line-height: 30px;
}

.banner img{
    width: 100%;
}

/*左侧导航*/
.aside{
    float: left;
    width: 288px;
    position: relative;
    margin-top: 30px;
    background: #F1F1F1;
    border: 2px solid var(--varColor);
}
.aside p{
    position: relative;
    height: 80px;
    line-height: 80px;
    color: #fff;
    font-size: 24px;
    padding-left: 40px;
    background: var(--varColor);
}
.aside ul{
    margin: 10px 0 30px;
}
.aside ul li{
    position: relative;
    padding: 0 20px;
}
.aside ul li a{
    display: block;
    line-height: 25px;
    font-size: 16px;
    padding: 15px 0 15px 20px;
    border-bottom: 1px solid #C2C2C2;
    position: relative;
}
.aside ul li a:before{
    content: '>';
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    font-family: '宋体';
}
.aside ul li a:hover{
    font-weight: bold;
    text-decoration: none;
}
.aside>ul>li.on>a{
    color: var(--varColor);
    font-weight: bold;
}

/*右侧列表*/
.column{
    float: right;
    width: 880px;
    min-height: 300px;
    margin-top: 30px;
}
.bread {
    height: 40px;
    line-height: 35px;
    border-bottom: 1px solid #C2C2C2;
    overflow: hidden;
}
.bread .lf{
    color: #666;
}
.bread .lf a{
    color: #666;
}
.bread .lf a:hover{
    color: var(--varColor);
    text-decoration: none;
}

/*详情页*/
.detail{
    margin: 30px 0;
}
.caption{
    position: relative;
    margin: 30px 0;
    text-align: center;
}
.caption h1{
    font-size: 20px;
    font-weight: normal;
}
.caption p{
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}
.caption p span{
    margin-right: 10px;
}
.caption .share{
    position: absolute;
    right: 0;
    bottom: -5px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}
.content{
    min-height: 300px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CDCDCD;
}

/*简介页*/
.profile{
    margin: 30px 0;
    min-height: 300px;
}

/*动画效果*/
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}
